home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////////
- // CThreadOptionsDlg dialog
-
- #include "resource.h"
-
- class CThreadOptionsDlg : public CDialog
- {
- // Construction
- public:
- CThreadOptionsDlg(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CThreadOptionsDlg)
- enum { IDD = IDD_THREAD_OPTIONS_DLG };
- int m_nThreadCount;
- CString m_strLogFilename;
- BOOL m_bLogOutput;
- BOOL m_bUseWindowPerThread;
- //}}AFX_DATA
-
- DWORD m_dwThreadPriorityClass;
- int m_nTestType;
- BOOL m_bUseMutexObjects;
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CThreadOptionsDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
-
- // Generated message map functions
- //{{AFX_MSG(CThreadOptionsDlg)
- afx_msg void OnLogOutputCheck();
- virtual BOOL OnInitDialog();
- afx_msg void OnBrowseLogBtn();
- afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
- afx_msg void OnTimedGraphicsDemo();
- afx_msg void OnUntimedGraphicsDemo();
- afx_msg void OnPrimesDemo();
- afx_msg void OnFpCalcDemo();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-